
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    color: #fff;
    line-height: 1.8;
}

/* Barra superior con logo y menú */
.top-bar {
    background: #000;
    padding: 15px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo-container {
    height: 60px;
}

.logo-container img {
    height: 100%;
    width: auto;
    max-width: 200px;
}

/* Menú de navegación */
.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
    position: relative;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2ecc71;
}

.nav-menu a.active {
    color: #2ecc71;
    font-weight: 600;
}

/* Hero Section */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    text-align: center;
    padding-top: 90px;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #2ecc71;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Sección de Contacto */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    background: #000;
    padding: 80px 10%;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2ecc71;
    text-transform: uppercase;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    color: #2ecc71;
    margin-right: 15px;
    font-size: 1.5rem;
    min-width: 30px;
}

.contact-text h3 {
    color: #2ecc71;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-text p, .contact-text a {
    color: #fff;
    text-decoration: none;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: #111;
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2ecc71;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    background: #222;
    border: 1px solid #333;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #2ecc71;
    color: #000;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.submit-btn:hover {
    background: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Mapa */
.map-container {
    width: 100%;
    height: 400px;
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 5px;
}

footer {
    background: #111;
    padding: 30px 10%;
    text-align: center;
    font-size: 0.9rem;
}

/* Menú hamburguesa para móviles */
.menu-toggle {
    display: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
    }
    
    .top-bar {
        padding: 10px 5%;
    }
    
    .logo-container {
        height: 50px;
    }
    
    .contact-section {
        flex-direction: column;
        padding: 50px 5%;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #000;
        flex-direction: column;
        align-items: center;
        padding-top: 30px;
        transition: 0.3s;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .menu-toggle {
        display: block;
        color: #fff;
        font-size: 1.5rem;
    }
}
.error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    display: none;
}

.error-message.show {
    display: block;
}

.form-control.error {
    border-color: #e74c3c;
}

.form-message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.captcha-container {
    margin-top: 20px;
}
        /* Estilos adicionales para las redes sociales */
        .social-links {
            margin-top: 20px;
        }
        
        .social-links h3 {
            margin-bottom: 15px;
            color: #333;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #2a7f62;
            color: white;
            border-radius: 50%;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background-color: #1e5f47;
            transform: translateY(-3px);
        }